home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Visual Basic Toolbox
/
Visual Basic Toolbox (P.I.E.)(1996).ISO
/
dll_dbas
/
bigarr
/
bigarry1.frm
< prev
next >
Wrap
Text File
|
1995-03-05
|
6KB
|
186 lines
VERSION 2.00
Begin Form frmBig1
BackColor = &H00C0C0C0&
Caption = "'BIG DISK ARRAY' Demonstration (part 2)"
ClientHeight = 5385
ClientLeft = 1290
ClientTop = 2100
ClientWidth = 6930
Height = 5730
Icon = 0
Left = 1260
ScaleHeight = 5385
ScaleWidth = 6930
Tag = "BIGARRY2"
Top = 1785
Width = 6990
Begin CommandButton Command1
Caption = "&Type'd"
Height = 300
Index = 5
Left = 5850
TabIndex = 7
Top = 1890
Width = 1005
End
Begin CommandButton Command1
Caption = "&Fixed string"
Height = 300
Index = 4
Left = 4410
TabIndex = 6
Top = 1890
Width = 1200
End
Begin CommandButton Command1
Caption = "&Double"
Height = 300
Index = 3
Left = 3330
TabIndex = 5
Top = 1890
Width = 1005
End
Begin CommandButton Command1
Caption = "&Single"
Height = 300
Index = 2
Left = 2250
TabIndex = 4
Top = 1890
Width = 1005
End
Begin CommandButton Command1
Caption = "&Long"
Height = 300
Index = 1
Left = 1170
TabIndex = 3
Top = 1890
Width = 1005
End
Begin CommandButton Command1
Caption = "&Integer"
Height = 300
Index = 0
Left = 90
TabIndex = 2
Top = 1890
Width = 1005
End
Begin ListBox List3
BackColor = &H00C0C0C0&
FontBold = 0 'False
FontItalic = 0 'False
FontName = "MS Sans Serif"
FontSize = 8.25
FontStrikethru = 0 'False
FontUnderline = 0 'False
Height = 1200
Left = 90
TabIndex = 11
Top = 4140
Width = 6765
End
Begin ListBox List2
BackColor = &H00C0C0C0&
FontBold = 0 'False
FontItalic = 0 'False
FontName = "MS Sans Serif"
FontSize = 8.25
FontStrikethru = 0 'False
FontUnderline = 0 'False
Height = 1200
Left = 90
TabIndex = 9
Top = 2610
Width = 6765
End
Begin ListBox List1
BackColor = &H00C0C0C0&
FontBold = 0 'False
FontItalic = 0 'False
FontName = "MS Sans Serif"
FontSize = 8.25
FontStrikethru = 0 'False
FontUnderline = 0 'False
Height = 1200
Left = 90
TabIndex = 1
Top = 360
Width = 6225
End
Begin PictureBox Picture1
AutoSize = -1 'True
BorderStyle = 0 'None
Height = 480
Left = 6390
Picture = BIGARRY1.FRX:0000
ScaleHeight = 480
ScaleWidth = 480
TabIndex = 12
Top = 30
Visible = 0 'False
Width = 480
End
Begin Label Label1
BackStyle = 0 'Transparent
Caption = "&Select one of the following variable type to perform the test"
Height = 195
Index = 3
Left = 90
TabIndex = 13
Top = 1620
Width = 6765
End
Begin Label Label1
BackStyle = 0 'Transparent
Caption = "&Read the 30 random data in (r, c, s) for (row, col, sheet)"
Height = 195
Index = 2
Left = 90
TabIndex = 10
Top = 3870
Width = 6765
End
Begin Label Label1
BackStyle = 0 'Transparent
Caption = "&Writing 30 random data in random place in (r, c, s) for (row, col, sheet)"
Height = 195
Index = 1
Left = 90
TabIndex = 8
Top = 2340
Width = 6765
End
Begin Label Label1
BackStyle = 0 'Transparent
Caption = "&Initialization status"
Height = 195
Index = 0
Left = 90
TabIndex = 0
Top = 90
Width = 5505
End
End
Option Explicit
Sub Command1_Click (Index As Integer)
' disable the form (keys and mouse)
cDisableFI Picture1
' call the test depending on the index of the command
Call TestBig(Index + 1)
' enable the form (keys and mouse)
cEnableFI Picture1
End Sub
Sub Form_Unload (Cancel As Integer)
Call DeleteDemoFiles
End Sub